home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PRINTER / EPSON.ARJ / GFX.DOC < prev    next >
Text File  |  1989-07-19  |  2KB  |  42 lines

  1.                             GFX - Graphic File Generator
  2.  
  3.                 GFX is a utility designed to simplify the generation of
  4.             graphics on an Epson type printer.  It will allow you to
  5.             quickly create a small graphic image and will then generate
  6.             a short disk file that will reproduce the graphic when
  7.             dumped to the printer.
  8.  
  9.                 GFX REQUIRES A MOUSE AND AN EPSON COMPATIBLE PRINTER.
  10.  
  11.                 Operation is simple.  The left mouse button turns on a
  12.             cell, the right turns it off.  After pressing S to save, GFX
  13.             will prompt you for a file name.  The name you give will
  14.             have the extension .GFX added.
  15.  
  16.                 Once the file is generated, you need only dump it to the
  17.             printer to produce the desired graphic.
  18.  
  19.             A simple BASIC program to do this would look like:
  20.  
  21.             OPEN filespec$ FOR INPUT AS #1
  22.             WHILE NOT EOF(1)
  23.                 LINE INPUT #1,A$
  24.                 LPRINT A$;
  25.             WEND
  26.  
  27.                 GFX currently recognizes 8 commmon Epson graphics modes.
  28.             Some or all of these modes are recognized by MX/RX/FX/LQ
  29.             type printers.
  30.  
  31.                 Very early Epson type printers are supported by the use
  32.             of a special command line parameter:
  33.  
  34.                 GFX /MX
  35.  
  36.                 Not all modes are recognized by all printers; if you
  37.             cannot get your printer to print (particularily with modes 0
  38.             and 1) try restarting the program with this switch.
  39.  
  40.             Enjoy !
  41.  
  42.             Randy MacLean